1. Upload the contents of upload/ to their respective folders

2. Import the product product-radio-and-tv.xml with Allow Overwrite on

3. Set the Radio and TV Permissions for each user group

4. If you are upgrading from 1.2 or older, delete:

includes/xml/cpnav_radiostations.xml
admincp/radiostations_admin.php
radiostations.php

And redo your navbar template edits. The javascript call changed from
openRadioStations() to openRadioAndTV().

5. If you are upgrading from 1.8 or older, edit in your navbar template, change
this

function openRadioAndTV(){
radioAndTVWindow = window.open('radioandtv.php', 'radioandtv', 'directories=no,height=500,width=700,location=no,menubar=no,resizable=yes,status=no,scrollbars=yes,toolbar=no');
}

For this

function openRadioAndTV(stationid){
extras = '';
if (stationid) { extras = '?station=' + stationid; }
radioAndTVWindow = window.open('radioandtv.php' + extras, 'radioandtv', 'directories=no,height=500,width=700,location=no,menubar=no,resizable=yes,status=no,scrollbars=yes,toolbar=no');
}


Done